.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    text-decoration: none;
    z-index: 9999;
}

.nomeprod:hover {
    color: #fff;
}

.sr-only {
    color: #fff!important;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-icon {
    width: 28px;
    height: 28px;
}

.whatsapp-btn::after {
    content: "Fale conosco";
    position: absolute;
    right: 70px;
    white-space: nowrap;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.whatsapp-btn:hover::after {
    opacity: 1;
}

/* Reset básico */

@font-face {
    font-family: seasonBd;
    src: url(seasonBold.otf);
    font-display: swap;
}

@font-face {
    font-family: virust;
    src: url(seasonReg.otf);
    font-display: swap;
}

@font-face {
    font-family: mogilte;
    src: url(Mogilte.otf);
    font-display: swap;
}

@font-face {
    font-family: toraja;
    src: url(TORAJA.ttf);
    font-display: swap;
}

@font-face {
    font-family: bingo;
    src: url(demo-binggo-wood-display.otf);
    font-display: swap;
}

@font-face {
    font-family: fontuna;
    src: url(./Fontuna-Stencil.otf);
    font-display: swap;
}

@font-face {
    font-family: lastica;
    src: url(./FontsFree-Net-Lastica.ttf);
    font-display: swap;
}

body {
    min-height: 100vh;
    background: radial-gradient(120% 120% at 10% 0%, rgba(80, 30, 210, 0.35), transparent 55%),
        radial-gradient(90% 90% at 90% 10%, rgba(0, 160, 255, 0.28), transparent 60%),
        #050013;
    background-size: 100% 170%;
    margin: 0;
    font-family: 'Arial', sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #000!important;
}

html {
    scroll-behavior: smooth;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container-title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .title-h1 {
        font-size: 40px!important;
        line-height: 50px!important;
    }
}

.title-h1 {
    font-size: 80px;
    font-family: lastica;
    margin-top: -30px;
    line-height: 80px;
    background: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    color: #fff!important;
}

.logo {
    width: 300px;
}

.title-h2 {
    font-size: 90px;
    font-family: bingo;
    margin-top: -40px!important;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .logo img {
    max-height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #007BFF;
}

#hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, #e3f2fd, #90caf9);
    color: #fff;
}

#hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

#hero p {
    font-size: 18px;
}

.box-artigo {
    margin-top: -40px;
}

.icon.seta {
    text-align: center;
    font-size: 45px;
    color: #4c4c4c;
    width: 50px;
    height: 50px;
    background: transparent;
    margin: auto;
    float: none;
    display: block;
    opacity: 0;
    animation: anima-seta 700ms ease infinite;
}

@keyframes anima-seta {
    to {
        opacity: 1;
        transform: translateY(18px);
    }
}

:root {
    --primary-color: #000000;
    --secondary-color: rgb(170, 0, 200);
    --accent-color: #3b82f6;
    --muted-gray: #e5e7eb;
    --muted-gray-dark: #d1d5db;
    --text-dark: #111827;
    --text-muted: #374151;
}

nav {
    background-color: var(--primary-color);
    padding: 0rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    width: 100px;
    /* Ajuste conforme necessário */
    transition: transform 0.3s ease;
}

@media(max-width: 765px) {
    .logo {
        width: auto;
        height: auto;
    }
    .logo-img {
        width: auto;
        height: auto;
    }
}

.nav-links a {
    color: white!important;
    margin-left: 2rem!important;
    text-decoration: none!important;
    font-weight: 500!important;
    transition: all 0.3s ease!important;
}

.nav-links a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.nav-links a.active {
    color: var(--secondary-color) !important;
    border-bottom: 2px solid var(--secondary-color);
}

/* Botões de filtro */

.filter-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background-color: var(--muted-gray);
    color: var(--text-muted) !important;
    font-weight: 500;
    transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
    border: 1px solid transparent;
}

.filter-btn:hover,
.hover\:bg-gray-300:hover {
    background-color: var(--muted-gray-dark) !important;
    transform: translateY(-1px);
}

.filter-btn:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

.filter-btn.active {
    background-color: var(--accent-color) !important;
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35);
}


.hidden {
    display: none !important;
}

.bg-black {
    background-color: #000 !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.bg-gray-200 {
    background-color: var(--muted-gray) !important;
}

.bg-blue-500 {
    background-color: var(--accent-color) !important;
}

.text-gray-700 {
    color: var(--text-muted) !important;
}

.text-gray-900 {
    color: var(--text-dark) !important;
}

.text-white {
    color: #fff !important;
}

.text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem !important;
}

.font-medium {
    font-weight: 500 !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.mb-12 {
    margin-bottom: 3rem !important;
}

.px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.py-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.py-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

.rounded-lg {
    border-radius: 0.5rem !important;
}

.w-full {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.max-w-7xl,
.lg\:max-w-7xl {
    max-width: 80rem !important;
}

.flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.gap-4 {
    gap: 1rem !important;
}

.grid {
    display: grid !important;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
}

.gap-x-6 {
    column-gap: 1.5rem !important;
}

.gap-y-10 {
    row-gap: 2.5rem !important;
}

.aspect-square {
    aspect-ratio: 1 / 1 !important;
}

.object-cover {
    object-fit: cover !important;
}

.group-hover\:opacity-75 {
    transition: opacity 0.3s ease;
}

.group:hover .group-hover\:opacity-75 {
    opacity: 0.75;
}

.product {
    text-decoration: none;
}

.product h3 {
    transition: color 0.2s ease;
}

.product:hover h3 {
    color: var(--secondary-color) !important;
}

@media (min-width: 640px) {
    .sm\:px-6 {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }
    .sm\:py-24 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important;
    }
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
    .lg\:px-8 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }
    .xl\:gap-x-8 {
        column-gap: 2rem !important;
    }
    .xl\:aspect-\[7\/8\] {
        aspect-ratio: 7 / 8 !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .icon.seta {
        animation: none;
    }
    .filter-btn,
    .whatsapp-btn,
    .group-hover\:opacity-75 {
        transition: none;
    }
}


/* Responsividade */

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        padding: 1rem;
    }
    .nav-links {
        margin-top: 1rem;
    }
    .nav-links a {
        margin: 0 1rem;
    }
    .logo-img {
        height: 40px;
    }
}